home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Megaware 1
/
Megaware Volume 1.iso
/
programg
/
c-tutor
/
answers
/
ch01_2.cpp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-07-21
|
193 b
|
12 lines
// Chapter 1 - Programming exercise 2
#include "iostream.h"
main()
{
const index = 17;
volatile count;
count = index + 12;
index = count + 3;
}